 :root {
            --primary-color: #F7A8B8;
            --secondary-color: #5D4037;
            --accent-color: #FFD54F;
            --light-color: #FFF9F2;
            --dark-color: #3E2723;
            --text-color: #4E342E;
            --white: #FFFFFF;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            background-color: var(--light-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header styles */
        header {
            background-color: var(--white);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo-container {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-circle {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), #FFB6C1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.2rem;
            font-weight: 800;
            margin-right: 20px;
        }

        .logo-main {
            font-family: 'Dancing Script', cursive;
            font-size: 2.8rem;
            color: var(--primary-color);
        }

        .logo-tagline {
            font-size: 1rem;
            color: var(--secondary-color);
            font-weight: 600;
            letter-spacing: 2px;
            margin-top: 5px;
        }

        nav {
            display: flex;
            align-items: center;
        }

        nav ul {
            display: flex;
            list-style: none;
            align-items: center;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--dark-color);
            font-weight: 600;
            font-size: 1.15rem;
            padding: 8px 0;
            position: relative;
            display: inline-block;
            transition: all 0.3s;
        }

        /* Underline effect for nav links */
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            bottom: 0;
            left: 0;
            transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border-radius: 2px;
        }

        nav ul li a:hover {
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        nav ul li a:hover:after {
            width: 100%;
        }

        nav ul li a.active {
            color: var(--primary-color);
            font-weight: 700;
        }

        nav ul li a.active:after {
            width: 100%;
        }

        /* Back to Order Page Button */
        .back-to-order-btn {
            background: linear-gradient(135deg, var(--primary-color), #FF80AB);
            color: white;
            border: none;
            padding: 10px 22px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s;
            font-size: 1rem;
            letter-spacing: 0.5px;
            box-shadow: 0 5px 15px rgba(247, 168, 184, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            margin-left: 25px;
            position: relative;
            overflow: hidden;
        }

        .back-to-order-btn:hover {
            background: linear-gradient(135deg, var(--dark-color), #5D4037);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(247, 168, 184, 0.4);
        }

        .back-to-order-btn:active {
            transform: translateY(-1px);
        }

        .back-to-order-btn i {
            font-size: 1rem;
        }

        /* Page Header */
        .page-header {
            background: linear-gradient(rgba(255, 249, 242, 0.9), rgba(255, 249, 242, 0.95));
            padding: 100px 0 50px;
            text-align: center;
        }

        .page-title {
            font-family: 'Dancing Script', cursive;
            font-size: 3.8rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .page-intro {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Track Options Tabs */
        .track-options {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .track-tab {
            background-color: var(--white);
            border: 2px solid #eee;
            border-radius: 15px;
            padding: 20px 30px;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--dark-color);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .track-tab:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .track-tab.active {
            background-color: var(--primary-color);
            color: var(--white);
            border-color: var(--primary-color);
        }

        .tab-icon {
            font-size: 1.5rem;
        }

        /* Track Order Section */
        .track-order-section {
            padding: 30px 0 100px;
        }

        .track-form-container {
            background-color: var(--white);
            border-radius: 25px;
            padding: 60px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            max-width: 800px;
            margin: 0 auto;
        }

        .form-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .form-title h2 {
            font-size: 2.5rem;
            color: var(--dark-color);
            font-family: 'Playfair Display', serif;
        }

        .track-form {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--dark-color);
            font-size: 1.1rem;
        }

        .form-control {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #eee;
            border-radius: 12px;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .form-control:focus {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(247, 168, 184, 0.2);
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--primary-color), #FF80AB);
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: 35px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s;
            font-size: 1.2rem;
            display: inline-block;
            text-align: center;
            text-decoration: none;
        }

        .submit-btn:hover {
            background: linear-gradient(135deg, var(--dark-color), #5D4037);
            transform: translateY(-5px);
        }

        /* Orders List Container */
        .orders-list-container {
            display: none;
            margin-top: 40px;
            animation: fadeIn 0.5s ease;
        }

        .orders-list-title {
            font-size: 1.8rem;
            color: var(--dark-color);
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--light-color);
        }

        .orders-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .order-card {
            background-color: var(--light-color);
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .order-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-color);
        }

        .order-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .order-card-number {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark-color);
        }

        .order-card-status {
            padding: 5px 15px;
            border-radius: 15px;
            font-weight: 600;
            font-size: 0.8rem;
        }

        .order-card-details {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .order-card-item {
            display: flex;
            justify-content: space-between;
        }

        .order-card-label {
            color: var(--secondary-color);
            font-weight: 600;
        }

        .order-card-value {
            color: var(--dark-color);
            font-weight: 500;
        }

        /* Order Status Display */
        .order-status-container {
            display: none;
            margin-top: 40px;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .order-details-card {
            background-color: var(--white);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
        }

        .order-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid var(--light-color);
        }

        .order-number {
            font-size: 1.8rem;
            color: var(--dark-color);
            font-weight: 700;
        }

        .order-status {
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .status-pending {
            background-color: #FFF3CD;
            color: #856404;
        }

        .status-confirmed {
            background-color: #D1ECF1;
            color: #0C5460;
        }

        .status-completed {
            background-color: #D4EDDA;
            color: #155724;
        }

        .order-details-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 30px;
        }

        .detail-item h4 {
            color: var(--dark-color);
            margin-bottom: 8px;
            font-size: 1rem;
        }

        .detail-item p {
            font-size: 1.1rem;
            font-weight: 500;
        }

        /* Status Timeline */
        .status-timeline {
            margin-top: 40px;
        }

        .status-timeline h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: var(--dark-color);
        }

        .timeline {
            position: relative;
            padding-left: 30px;
        }

        .timeline:before {
            content: '';
            position: absolute;
            left: 10px;
            top: 0;
            bottom: 0;
            width: 3px;
            background-color: #eee;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 30px;
        }

        .timeline-item:last-child {
            margin-bottom: 0;
        }

        .timeline-dot {
            position: absolute;
            left: -28px;
            top: 0;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: #ddd;
        }

        .timeline-item.active .timeline-dot {
            background-color: var(--primary-color);
            box-shadow: 0 0 0 5px rgba(247, 168, 184, 0.3);
        }

        .timeline-item.completed .timeline-dot {
            background-color: var(--accent-color);
        }

        .timeline-content h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--dark-color);
        }

        .timeline-content p {
            color: var(--text-color);
            opacity: 0.8;
        }

        .timeline-date {
            font-size: 0.9rem;
            color: var(--secondary-color);
            margin-top: 5px;
        }

        /* Error Message */
        .error-message {
            background-color: #F8D7DA;
            color: #721C24;
            padding: 20px;
            border-radius: 12px;
            margin-top: 20px;
            display: none;
            text-align: center;
        }

        /* Back Button */
        .back-btn {
            background-color: var(--light-color);
            color: var(--dark-color);
            border: 2px solid #eee;
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-bottom: 20px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .back-btn:hover {
            background-color: #eee;
            border-color: var(--primary-color);
        }

        /* FOOTER - CHANGED TO MATCH ORDER PAGE FOOTER */
        /* footer {
            background-color: var(--dark-color);
            color: var(--light-color);
            padding: 100px 0 40px;
            position: relative;
            margin-top: 100px;
        }

        footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath d='M500,97C126.7,96.3,0.8,19.8,0,0v100l1000,0V0C999.2,19.8,873.3,96.3,500,97z' fill='%233E2723'/%3E%3C/svg%3E");
            background-size: 100% 120px;
            background-position: top;
            background-repeat: no-repeat;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 60px;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }

        .footer-logo {
            font-family: 'Dancing Script', cursive;
            font-size: 3.5rem;
            color: var(--primary-color);
            margin-bottom: 25px;
            line-height: 1;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
        }

        .footer-about p {
            margin-bottom: 30px;
            opacity: 0.85;
            line-height: 1.9;
            font-size: 1.05rem;
        }

        .footer-links h3, .footer-contact h3 {
            font-size: 1.6rem;
            margin-bottom: 35px;
            color: var(--white);
            font-family: 'Playfair Display', serif;
            position: relative;
            padding-bottom: 15px;
        }

        .footer-links h3:after, .footer-contact h3:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            bottom: 0;
            left: 0;
            border-radius: 2px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 18px;
        }

        .footer-links ul li a {
            color: var(--light-color);
            text-decoration: none;
            opacity: 0.85;
            transition: all 0.3s;
            display: inline-block;
            font-size: 1.05rem;
        }

        .footer-links ul li a:hover {
            opacity: 1;
            color: var(--primary-color);
            transform: translateX(8px);
        }

        .footer-contact p {
            margin-bottom: 25px;
            opacity: 0.85;
            display: flex;
            align-items: flex-start;
            line-height: 1.7;
            font-size: 1.05rem;
        }

        .footer-contact i {
            margin-right: 18px;
            color: var(--primary-color);
            font-size: 1.3rem;
            margin-top: 3px;
        }

        .footer-social {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }

        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.12);
            color: var(--light-color);
            border-radius: 50%;
            font-size: 1.3rem;
            transition: all 0.4s;
            text-decoration: none;
        }

        .social-icon:hover {
            background: linear-gradient(135deg, var(--primary-color), #FF80AB);
            transform: translateY(-8px) rotate(10deg);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
        }

        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            font-size: 1rem;
            opacity: 0.8;
            position: relative;
            z-index: 1;
        }

        .copyright i.fa-heart {
            color: var(--primary-color);
            margin: 0 5px;
            animation: heartbeat 1.5s infinite;
        } */

        @keyframes heartbeat {
            0% { transform: scale(1); }
            5% { transform: scale(1.2); }
            10% { transform: scale(1.1); }
            15% { transform: scale(1.3); }
            50% { transform: scale(1); }
            100% { transform: scale(1); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .track-form-container {
                padding: 30px;
            }
            
            .track-options {
                flex-direction: column;
                align-items: center;
            }
            
            .track-tab {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
            
            .order-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .page-title {
                font-size: 3rem;
            }
            
            .orders-grid {
                grid-template-columns: 1fr;
            }
            
            /* Responsive navbar */
            nav ul li {
                margin-left: 15px;
            }
            
            .back-to-order-btn {
                margin-left: 15px;
                padding: 8px 16px;
                font-size: 0.9rem;
            }
            
            /* Footer responsive */
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            footer {
                padding: 80px 0 30px;
            }
        }
        
        @media (max-width: 576px) {
            .header-container {
                flex-direction: column;
                padding: 10px 0;
            }
            
            nav {
                margin-top: 15px;
                width: 100%;
                justify-content: center;
            }
            
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 5px 10px;
            }
            
            .back-to-order-btn {
                margin-left: 0;
                margin-top: 10px;
                order: 3;
            }
            
            .footer-logo {
                font-size: 3rem;
            }
            
            .footer-content {
                gap: 30px;
            }
        }